home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 76 / XENIATGM66.iso / Indiana Jones / Indiana Jones.exe / RESOURCE / PREVIEW.GOB / cog_pyr_gashint.cog < prev    next >
Text File  |  1999-11-15  |  602b  |  38 lines

  1. # Jones 3D Cog Script
  2. #
  3. # pyr_gashint.cog
  4. #    
  5. # The hint for the gas can travels with the jeep
  6. #
  7. # [RKD]
  8. #
  9. # (C) 1998 LucasArts Entertainment Company LLC. All Rights Reserved
  10. # ========================================================================================
  11.  
  12. symbols
  13. message    startup
  14. message    user0
  15. message    user1
  16.  
  17. thing    actorjeep    nolink
  18. thing    staticjeep
  19. thing    hint57        nolink
  20.  
  21. end
  22.  
  23. code
  24. startup:
  25.     CaptureThing(staticjeep);
  26.     AttachThingToThing(hint57, actorjeep);
  27.     return;
  28.  
  29. user0:
  30.     SetHintSolved(hint57);
  31.     return;
  32.  
  33. user1:
  34.     SetHintUnsolved(hint57);
  35.     return;
  36.  
  37. end
  38.